home *** CD-ROM | disk | FTP | other *** search
- var buttonText;
- var OnClick;
- this.hitArea = mcHint;
- mcHint._visible = false;
- this.onRollOver = function()
- {
- gotoAndStop(3);
- };
- this.onRollOut = function()
- {
- gotoAndStop(2);
- };
- this.onPress = function()
- {
- Helper.PlaySound("soundMenuHit");
- gotoAndStop(4);
- };
- this.onRelease = function()
- {
- if(OnClick != undefined)
- {
- OnClick(this);
- }
- };
- stop();
-